home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / windows / tbag32.zip / ABOUT3K.PAS < prev    next >
Pascal/Delphi Source File  |  1997-03-06  |  546b  |  33 lines

  1. unit About3K;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, ExtCtrls, Buttons, Animate;
  8.  
  9. type
  10.   TfrmAbout3K = class(TForm)
  11.     Panel1: TPanel;
  12.     HelpMemo: TMemo;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     constructor Construct(Title: string);
  17.   end;
  18.  
  19. var
  20.   frmAbout3K: TfrmAbout3K;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. constructor TfrmAbout3K.Construct(Title: string);
  27. begin
  28.    inherited Create(Application);
  29.    Caption := Title;
  30. end;
  31.  
  32. end.
  33.